home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / netinet / RCS / tcp_debug.h,v < prev    next >
Text File  |  1988-06-29  |  1KB  |  82 lines

  1. head     1.2;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.2
  9. date     88.06.29.15.11.14;  author ouster;  state Exp;
  10. branches ;
  11. next     1.1;
  12.  
  13. 1.1
  14. date     88.06.21.11.59.30;  author ouster;  state Exp;
  15. branches ;
  16. next     ;
  17.  
  18.  
  19. desc
  20. @@
  21.  
  22.  
  23. 1.2
  24. log
  25. @Add ifdefs to keep files from being processed twice.
  26. @
  27. text
  28. @/*
  29.  * Copyright (c) 1982, 1986 Regents of the University of California.
  30.  * All rights reserved.
  31.  *
  32.  * Redistribution and use in source and binary forms are permitted
  33.  * provided that this notice is preserved and that due credit is given
  34.  * to the University of California at Berkeley. The name of the University
  35.  * may not be used to endorse or promote products derived from this
  36.  * software without specific prior written permission. This software
  37.  * is provided ``as is'' without express or implied warranty.
  38.  *
  39.  *    @@(#)tcp_debug.h    7.2 (Berkeley) 12/7/87
  40.  */
  41.  
  42. #ifndef _TCP_DEBUG
  43. #define _TCP_DEBUG
  44.  
  45. struct    tcp_debug {
  46.     n_time    td_time;
  47.     short    td_act;
  48.     short    td_ostate;
  49.     caddr_t    td_tcb;
  50.     struct    tcpiphdr td_ti;
  51.     short    td_req;
  52.     struct    tcpcb td_cb;
  53. };
  54.  
  55. #define    TA_INPUT     0
  56. #define    TA_OUTPUT    1
  57. #define    TA_USER        2
  58. #define    TA_RESPOND    3
  59. #define    TA_DROP        4
  60.  
  61. #ifdef TANAMES
  62. char    *tanames[] =
  63.     { "input", "output", "user", "respond", "drop" };
  64. #endif
  65.  
  66. #define    TCP_NDEBUG 100
  67. struct    tcp_debug tcp_debug[TCP_NDEBUG];
  68. int    tcp_debx;
  69.  
  70. #endif _TCP_DEBUG
  71. @
  72.  
  73.  
  74. 1.1
  75. log
  76. @Initial revision
  77. @
  78. text
  79. @d15 3
  80. d42 2
  81. @
  82.